home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / mgr / vdimgr.zoo / contrib / mgrterm / proto.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-16  |  739 b   |  32 lines

  1. #if defined(__STDC__) || defined(__cplusplus)
  2. # define P_(s) s
  3. #else
  4. # define P_(s) ()
  5. #endif
  6.  
  7.  
  8. /* mgrterm.c */
  9. int main P_((int argc, const char **argv));
  10. void init P_((void));
  11. void do_quit P_((void));
  12. void download_menus P_((void));
  13. void do_escape P_((void));
  14. char *getline P_((int echo));
  15. void do_shell P_((void));
  16. void do_baud P_((void));
  17. int set_baud P_((char *s));
  18. void do_stop P_((void));
  19. void do_duplex P_((void));
  20. void do_flow P_((void));
  21. void do_termcap P_((void));
  22. void do_status P_((void));
  23. void Boutput P_((int dev, char *s));
  24. void do_dial P_((void));
  25. void read_whitepages P_((char *file));
  26. void send_dial P_((char *s));
  27. int getnum P_((char **stringp, int base));
  28. void alrm P_((void));
  29. int await_char P_((int ch));
  30.  
  31. #undef P_
  32.